Skip to main content

Get Dead Letter

Route

/v2/streaming/profiles/{profile_id}/dead-letter

Description

Retrieve dead letter queue information for a streaming profile. Dead letters contain records that failed to be delivered.

Method

GET

Inputs

ParameterTypeRequiredDescription
profile_idstringYesThe unique identifier of the profile

Output

FieldTypeDescription
resourcesarray[DeadLetter]Array containing dead letter information
errorsarray[Error]Any errors encountered

Dead Letter Object Structure

FieldTypeDescription
profile_idstringProfile identifier
profile_namestringProfile name
statestringDead letter state (ready, redrive_in_progress, etc.)
record_countstringNumber of dead letter records
oldest_undeliveredstringTimestamp of oldest undelivered record

Rate Limit

  • 60 requests per minute per API key
  • 5 concurrent requests per endpoint

Example Response

{
"resources": [
{
"profile_id": "profile-123",
"profile_name": "Security Events Stream",
"state": "ready",
"record_count": "42",
"oldest_undelivered": "2024-01-15T08:30:00Z"
}
],
"errors": []
}